home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / util / gnu / gnuinfo_920712.lha / Makefile < prev    next >
Makefile  |  1992-07-12  |  503b  |  23 lines

  1. CC = gcc
  2. CFLAGS = -resident -O2 -I.
  3. LDFLAGS = -resident
  4.  
  5. all: InfoView MakeInfo
  6.  
  7. InfoView: info.o getopt.o getopt1.o
  8.     $(CC) $(LDFLAGS) $< -o $@ -ltermcap
  9.  
  10. # order of the object files is critic, or pc-relative access > 16bit is
  11. # tried
  12. MakeInfo: makeinfo.o getopt.o getopt1.o
  13.     $(CC) $(LDFLAGS) $< -o $@
  14.  
  15. info.o: info.c
  16.     $(CC) $(CFLAGS) -msmall-code -c info.c
  17.  
  18. getopt1.o: getopt1.c getopt.h
  19.     $(CC) $(CFLAGS) -msmall-code -c getopt1.c
  20.  
  21. getopt.o: getopt.c getopt.h
  22.     $(CC) $(CFLAGS) -msmall-code -c getopt.c
  23.